Interface for closest pair algorithms.
Closest Pair algorithm using the Divide and Conquer approach.
Closest Pair algorithm using the Divide and Conquer approach. This implementation sorts the points by x and y coordinates and recursively finds the closest pair.
Represents the result of the closest pair algorithm.